src\pythontemplate\bad_example.py
Finding
| 1 | import hashlib |
| 2 | import subprocess |
| 3 | |
| 4 | from django.db.models import Model |
| 5 | |
| 6 | |
| 7 | def getHash(password: str): |
| 8 | """ |
| 9 | This is an example function for encrypting passwords. |
| 10 | |
| 11 | Args: |
| 12 | pw: The password to be encrypted. |
| 13 | """ |
| 14 |